home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / netmail / tmnice42.zip / TSCAN420.ZIP / EXAMPLE.BAT < prev    next >
DOS Batch File  |  1995-12-23  |  591b  |  20 lines

  1. @echo off
  2. tagscan F:\terminat\termail newtags.txt
  3. pause
  4. ASK "Do you want to edit the tagline file "Y\N?" /YN
  5. If errorlevel 2 goto bind
  6. rem in line below q is the editor; substitute your pathnamed editor.
  7. q newtags.txt
  8. :bind
  9. ASK "Do you want to prevent TagScan seeing these new tags again "Y\N?" /YN
  10. If errorlevel 2 goto update
  11. tagscan -a newtags.txt
  12. :update
  13. ASK "Do you want to update TmNice.TAG for the new tags "Y\N?" /YN
  14. If errorlevel 2 goto end
  15. copy newtags.txt c:\terminat\termail\tmnice
  16. cd c:\terminat\termail\tmnice
  17. copy tmnice.tag+newtags.txt
  18. del newtags.txt
  19. :end
  20.